/* =============================================================== *
 * Spinoko Home Redesign 2026 — Self-hosted fonts
 *
 * Sora (display) + Manrope (body) — Latin subset, served as VARIABLE
 * fonts. One ~25 KB woff2 per family covers the full 100→900 weight
 * axis; the browser picks the requested weight from a single file
 * instead of downloading a separate static face per weight.
 *
 * Total transfer:  50 KB for both families × all weights
 * (Static-font equivalent would be ~225 KB — 9 separate files.)
 *
 * font-display: swap = text renders immediately in a system fallback
 * while the .woff2 streams. unicode-range covers Latin + Finnish
 * (ä/ö/å) — the same range Google Fonts ships in its "latin" subset.
 * =============================================================== */

@font-face {
    font-family: 'Sora';
    font-style: normal;
    /* Variable-axis range: any font-weight: N declaration between
     * 100 and 900 picks the right glyph weight from this single
     * file. The redesign uses 400 / 500 / 600 / 700 / 800. */
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/sora.woff2') format('woff2-variations'),
         url('../fonts/sora.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/manrope.woff2') format('woff2-variations'),
         url('../fonts/manrope.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
