/* ==========================================================================
   Self-hosted web fonts — public site
   --------------------------------------------------------------------------
   Loaded as a plain <link> from Views/Layout.cshtml, NOT through the Vite
   bundle. Vite rewrites every url() it compiles to a hashed /content/asset
   (prod) or a dev-server URL (npm run dev) — the latter 404s — so the
   @font-face lives here instead, served straight by ASP.NET in every mode
   and on a fresh `npm ci && npm run build` environment.

   Font files: wwwroot/css/fonts/  (shared with the backoffice RTE sheet,
   wwwroot/css/rte-custom-styles.css). The heading rules that USE this family
   (h1-h6, .font-secondary -> var(--font-secondary)) stay in the SCSS bundle.
   ========================================================================== */

@font-face {
    font-family: "Lev Handdrawn Handcut";
    src: url("fonts/LevHanddrawnHandcut/font.woff2") format("woff2"),
         url("fonts/LevHanddrawnHandcut/font.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
