/* ==========================================================================
   Inter — locally hosted font setup
   --------------------------------------------------------------------------
   InterVariable.woff2 is the official Inter *variable* font: a single file
   that serves every weight from 100 to 900 (the browser interpolates).
   The four @font-face blocks below all point to the same file so that the
   usual static-weight declarations (400 / 500 / 600 / 700) keep working
   even in tooling that does not understand variable-font weight ranges.
   ========================================================================== */

/* Variable declaration — modern browsers pick the exact weight they need */
@font-face {
  font-family: "Inter";
  src: url("InterVariable.woff2") format("woff2-variations"),
       url("InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Static-weight aliases (all resolved from the same variable file) */
@font-face {
  font-family: "Inter";
  src: url("InterVariable.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("InterVariable.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("InterVariable.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("InterVariable.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
