/**
 * Self-hosted fonts
 *
 * Inter Variable — SIL Open Font License v1.1
 *   https://github.com/rsms/inter
 *
 * JetBrains Mono — SIL Open Font License v1.1
 *   https://www.jetbrains.com/lp/mono/
 *
 * Both are self-hosted to satisfy strict CSP (no external font CDN) and
 * Swiss data-sovereignty requirements. License files live next to the
 * woff2 files.
 */

/* Inter Variable — covers weight 100..900 in a single file */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/static/fonts/inter/InterVariable.woff2?v=ff758426a788') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('/static/fonts/inter/InterVariable-Italic.woff2?v=ff758426a788') format('woff2');
}

/* JetBrains Mono — two static weights suffice for code/mono use */
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/static/fonts/jetbrains-mono/JetBrainsMono-Regular.woff2?v=ff758426a788') format('woff2');
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/static/fonts/jetbrains-mono/JetBrainsMono-Bold.woff2?v=ff758426a788') format('woff2');
}
