/* ─────────────────────────────────────────────────────────────────────────
   Nunito — self-hosted (latin subset, weights 300–900, normal style only).
   2026-07-19 fix: this used to load from fonts.googleapis.com. If the
   server's outbound network can't reach that CDN (common on locked-down
   production servers, and something we've already hit with a different
   project's own restricted egress list), the @import/link silently fails
   and every page falls back to a bare system font with no error anywhere —
   which is exactly what was reported. Self-hosting removes the external
   dependency entirely: these 7 files (one per weight actually used across
   the site's CSS) are ~114KB total, served from the same origin as
   everything else, and load regardless of what the server can reach
   outbound.
   Source: @fontsource/nunito (SIL Open Font License), fetched via npm and
   copied in as static files — see the Font Awesome section of this file's
   sibling for the same treatment.
   ───────────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url('../fonts/nunito-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/nunito-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url('../fonts/nunito-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url('../fonts/nunito-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('../fonts/nunito-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url('../fonts/nunito-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-display: swap;
  font-weight: 900;
  src: url('../fonts/nunito-latin-900-normal.woff2') format('woff2');
}
