/* Inter – lokal gehostet (DSGVO-konform)
 *
 * font-display: optional
 *   - Erster Page-Load (uncached): Browser zeigt System-Fallback dauerhaft,
 *     wenn Inter nicht innerhalb ~100ms da ist. KEIN sichtbarer Font-Swap
 *     mehr beim Navigieren.
 *   - Zweiter Page-Load (cached): Inter ist sofort verfuegbar und wird
 *     genutzt — kein Flackern.
 *
 *   Die Voraussetzung dafuer ist aggressives Caching der woff2-Dateien
 *   (siehe assets/.htaccess: max-age=31536000, immutable).
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: optional;
    src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: optional;
    src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: optional;
    src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: optional;
    src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
}
