/*
  Local webfonts — official Google Fonts distributions, self-hosted so the
  finished site has no external font dependency (no CDN, no Google Fonts link).

  Figtree and Inter are both shipped by Google Fonts as single variable-weight
  woff2 files rather than separate static files per weight. Declaring a
  font-weight range on each @font-face lets the browser render the exact
  weight requested (400/500/600/700 for Figtree, 400/500 for Inter — the
  weights actually used by the Figma text styles) from that one file.
*/

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../assets/fonts/figtree-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-variable.woff2') format('woff2');
}
