/* Self-hosted web fonts (previously loaded from Google Fonts).
   All three are variable woff2 files, latin subset. font-display: swap keeps
   text visible while the font loads. Weight ranges span everything the site
   uses: JetBrains Mono 400-700 (code), Syne 400-800 (display headings),
   Inter 400-600 (the cisco/neovim tutorial pages). */

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

@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/syne-latin.woff2') format('woff2');
}

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