/* XtasyXperience — self-hosted webfonts
 *
 * Self-hosted rather than loaded from Google's CDN: no third-party request at
 * render time, faster first paint, and no data leaving your server on page
 * load (which keeps the privacy policy simple in a restricted category).
 *
 * Drop these files into assets/fonts/ before going live. Get them from
 * google-webfonts-helper (choose woff2, latin subset) or from Google Fonts
 * directly and convert:
 *
 *   cormorant-garamond-300.woff2
 *   cormorant-garamond-300italic.woff2
 *   cormorant-garamond-400.woff2
 *   inter-400.woff2
 *   inter-500.woff2
 *   ibm-plex-mono-400.woff2
 *
 * If the folder is empty the stacks in style.css fall back to system serif,
 * sans and mono — the site stays legible, it just loses the voice.
 */

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-300.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-300italic.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}

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

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
}
