/* A font by Jos Buivenga (exljbris) -> www.exljbris.com */
/* Fontin and Fontin SmallCaps, the typefaces Path of Exile uses. Served as a plain file (not through the
   CSS build, whose minifier drops every comment) so the notice the exljbris EULA asks for stays next to
   the @font-face rules. Bump ?v= in Shell.tsx and below when a font file changes. The fallbacks are
   metric-matched Arial (same numbers next/font generated), so the swap doesn't shift the layout. */
@font-face {
  font-family: "Fontin SmallCaps";
  src: url("/fonts/fontin-smallcaps.woff2?v=1") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Fontin";
  src: url("/fonts/fontin-regular.woff2?v=1") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Fontin SmallCaps Fallback";
  src: local("Arial");
  ascent-override: 83.25%;
  descent-override: 23.77%;
  line-gap-override: 8.41%;
  size-adjust: 106.81%;
}
@font-face {
  font-family: "Fontin Fallback";
  src: local("Arial");
  ascent-override: 86.13%;
  descent-override: 26.27%;
  line-gap-override: 8.8%;
  size-adjust: 102.04%;
}
:root {
  --font-fontin-sc: "Fontin SmallCaps", "Fontin SmallCaps Fallback";
  --font-fontin: "Fontin", "Fontin Fallback";
}
