/*
 * Inter, self-hosted.
 *
 * This used to be <link href="https://rsms.me/inter/inter.css"> in
 * application/_head.html.erb -- a render-blocking stylesheet from a third party
 * on every page, which then pulled its font files from that same third party.
 * If rsms.me is slow or blocked (in-app browsers, restrictive networks), first
 * paint waits on it. Same class of dependency AppSignal incident 118 turned out
 * to be for the map scripts, so it goes the same way.
 *
 * rsms.me's stylesheet declares ~60 @font-face rules: one variable font plus a
 * full static family per weight and slant. We only need the variable font --
 * it covers 100-900 continuously in two files (740KB total, vs. the static set's
 * several MB) -- so it is declared under the name the app already asks for,
 * `Inter` (see --font-sans in app/assets/tailwind/application.css). Nothing in
 * the app's own CSS had to change.
 *
 * Propshaft digests the woff2 files and rewrites these relative url()s to match.
 */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/inter/InterVariable-884c49a1.woff2") format("woff2");
}

@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/inter/InterVariable-Italic-0aa7a4b3.woff2") format("woff2");
}
