/* ============================================================================
   Self-hosted web fonts — replaces the external Google Fonts @import.
   Files: public/port/fonts/*.woff2 (latin subset, variable fonts).
   Family names kept identical (Space Grotesk, Inter) so no other CSS changes.
   font-display:swap → no invisible-text (FOIT), avoids CLS-blocking render.
   Weights actually used: Space Grotesk 500/600/700, Inter 400/500/600.
   ==========================================================================*/

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/port/fonts/space-grotesk-latin.woff2") format("woff2");
}

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