/* =============================================================
   fonts.css — Self-hosted Web Fonts (woff2)
   Replaces the previous Google Fonts <link>. Serving the fonts
   from our own server means no request to Google and no visitor
   IP sent to a third party (GDPR-friendly), plus faster loads.

   font-display: swap shows fallback text immediately and swaps in
   the web font once it has downloaded (no invisible-text flash).

   Files live in assets/fonts/ ; paths are relative to THIS file
   (css/ -> ../assets/fonts/).
   ============================================================= */

/* ---------- Inter — UI & body ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-v20-latin-italic.woff2') format('woff2');
}

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

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