/* =========================================================================
   SCHRIFTARTEN – LOKAL GEHOSTET
   Aktiv ist die VARIABLE-Variante (2 Dateien).
   Alternative: statische Schnitte weiter unten einkommentieren (4 Dateien).

   Benötigte Dateien in assets/fonts/ – exakt so benennen:
     space-grotesk-var.woff2      (Variable, Achse wght 300–700)
     jetbrains-mono-var.woff2     (Variable, Achse wght 100–800)
   ========================================================================= */

/* ---- Variable Fonts (empfohlen: 2 Requests statt 4) --------------------- */
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-var.woff2') format('woff2-variations'),
         url('../fonts/space-grotesk-var.woff2') format('woff2');
    font-weight: 300 700;   /* deckt 400 / 600 / 700 des Layouts ab */
    font-style: normal;
    font-display: swap;
    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: 'JetBrains Mono';
    src: url('../fonts/jetbrains-mono-var.woff2') format('woff2-variations'),
         url('../fonts/jetbrains-mono-var.woff2') format('woff2');
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
    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;
}

/* ---- Statische Schnitte (Fallback-Variante) -----------------------------
   Nur nötig, wenn keine Variable Fonts verwendet werden sollen.
   Oben stehenden Block auskommentieren, diesen einkommentieren.

   Dateien in assets/fonts/:
     space-grotesk-400.woff2
     space-grotesk-600.woff2
     space-grotesk-700.woff2
     jetbrains-mono-400.woff2

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/jetbrains-mono-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
--------------------------------------------------------------------------- */
