/* Inter v4.1 (rsms.me/inter) — self-hosted.
   Replaces the render-blocking third-party stylesheet from rsms.me. Only the
   variable font is shipped (every weight 100-900 in one file); browsers too old
   for variable fonts fall back to the system sans stack, same as being offline
   from rsms.me did before. The :root rule reproduces the original stylesheet's
   self-applying behaviour — nothing else in the codebase sets the font family. */
@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable-Italic.woff2") format("woff2");
}
:root {
  font-family: InterVariable, ui-sans-serif, system-ui, -apple-system, sans-serif;
}
