/* Self-hosted Inter (SIL OFL 1.1, see OFL.txt in this folder). One shared stylesheet
   linked by index.html, landing.html and the six legal pages - no third-party font
   request, so nothing leaks the user's IP to Google.

   Six static woff2 weights (latin + latin-ext combined, so Turkish glyphs render).
   @font-face is lazy: a page only downloads the weights it actually renders, so
   carrying all six here costs the legal pages (which use 400/700/800/900) nothing.
   font-display: swap matches the old &display=swap behaviour. Keep the
   'Inter', sans-serif fallback in the consuming stylesheets. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/inter-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/inter-900.woff2') format('woff2');
}
