/* Self-hosted Manrope + Outfit (replaces the fonts.googleapis.com round-trip).
   Both are variable-font files (wght axis) fetched once from Google Fonts'
   own CDN (fonts.gstatic.com) and served locally — same bytes, same
   sha384 as what Chrome would download from Google, just same-origin so
   the browser doesn't need a separate DNS+TLS+HTTP round-trip to
   fonts.googleapis.com + fonts.gstatic.com before it can render text. */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('./vendor/fonts/manrope-variable.woff2') format('woff2-variations'), url('./vendor/fonts/manrope-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./vendor/fonts/outfit-variable.woff2') format('woff2-variations'), url('./vendor/fonts/outfit-variable.woff2') format('woff2');
}
