Sakurajima uses a web font called Myriad Pro, not the Lexend font that is the Sharkey Default. You can restore the font from Sharkey by adding this CSS in Custom CSS
Code:
@font-face {
font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
font-family: 'Lexend';
font-style: normal;
font-weight: 400;
src: url('/static-assets/fonts/Lexend-VariableFont_wght.ttf') format('opentype');
}
html {
font-family: 'Lexend', 'Hiragino Maru Gothic Pro', "BIZ UDGothic", Roboto, HelveticaNeue, Arial, sans-serif !important;
}