/* ============================================================================
   Self-hosted web fonts (Inter + Outfit)
   ----------------------------------------------------------------------------
   These were previously loaded from Google Fonts (fonts.googleapis.com /
   fonts.gstatic.com), which returned 503 on every page and forced a silent
   fallback to system fonts. They are now served from /static/fonts so the brand
   typography is reliable and there is no third-party request on the critical
   path.

   Each family ships as a single variable woff2 (latin subset) covering the full
   100–900 weight axis, so one file serves every weight we use. `font-display:
   swap` keeps text visible during load; the system-font stacks in theme.css /
   bos-design-system.css remain the fallback if a file ever fails.
   ============================================================================ */

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

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