/*
 * Self-hosted webfonts — no third-party origins (was fonts.googleapis.com /
 * fonts.gstatic.com). Inter ships as one variable file covering all weights and
 * the full Latin range (incl. latin-ext for Turkish); JetBrains Mono ships the
 * two static weights the UI uses. font-display:swap keeps text visible while the
 * font loads. Files live in /public/fonts.
 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/InterVariable.woff2') format('woff2');
}

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

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/JetBrainsMono-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/JetBrainsMono-SemiBold.woff2') format('woff2');
}
