/* ============================================================
   Self-hosted webfonts.
   Replaces the Google Fonts <link> in the HTML head with a
   first-party request — no third-party call, no DNS lookup.
   The Inter Tight file is a variable font covering 400/500/700.
   ============================================================ */

/* Anton — display headline font */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton-400.woff2") format("woff2");
}

/* Inter Tight — body font (variable, 400–700) */
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-tight-400.woff2") format("woff2");
}

/* Inter Tight — italic 500 (Google only ships .woff for this one) */
@font-face {
  font-family: "Inter Tight";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-tight-500-italic.woff") format("woff");
}
