/* Self-hosted webfonts — site-wide.
   Outfit is the single text family (replaces Montserrat + Fira Sans). JetBrains
   Mono is used for mono surfaces (code, footer eyebrows/contact, tabular IDs).
   Both ship as variable woff2 (latin subset). */

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/outfit-variable.woff2") format("woff2");
}

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

:root {
    --primary-font: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --secondary-font: var(--primary-font);
    --mono-font: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    /* Footer aliases — kept so Footer.razor.css does not need editing. */
    --footer-sans: var(--primary-font);
    --footer-mono: var(--mono-font);
}
