/* ==========================================================================
   Self-hosted fonts.
   Previously two render-blocking requests to fonts.googleapis.com plus a third
   to fonts.gstatic.com — three DNS lookups and TLS handshakes before a single
   glyph could paint, and a third party told which page every visitor opened.
   Now: same origin, already-warm connection, and nothing leaves the server.

   Inter is subset to Latin (344 KB variable → 62 KB, all weights).
   font-display:swap paints text immediately in the fallback and swaps when the
   webfont lands, so slow connections never see blank headings.
   ========================================================================== */

@font-face{
  font-family:"InterVar";
  src:url("../fonts/inter-var.woff2") format("woff2");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Instrument Serif";
  src:url("../fonts/instrument-serif.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Instrument Serif";
  src:url("../fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight:400;
  font-style:italic;
  font-display:swap;
}
