/*
 * Inter v4.1 — self-hosted subset.
 *
 * Source: https://rsms.me/inter/ (SIL Open Font License 1.1).
 * Files: InterVariable.woff2 (roman, all weights), InterVariable-Italic.woff2.
 *
 * Registered under the family name "Inter" so existing usages in app.css
 * resolve cleanly. The variable font axis covers weights 100-900, so a
 * single @font-face per axis covers every weight the rest of the stylesheet
 * may request without further declarations.
 *
 * font-display: swap — render with fallback (Helvetica Neue / Arial) until
 * Inter loads, then swap. Avoids invisible-text-while-loading on slow links.
 *
 * If we ever need a non-variable-font-capable browser to pick up Inter, add
 * @font-face rules for the static Inter-Regular.woff2 / Inter-Bold.woff2
 * files alongside (currently not bundled).
 */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('InterVariable.woff2') format('woff2-variations'),
         url('InterVariable.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('InterVariable-Italic.woff2') format('woff2-variations'),
         url('InterVariable-Italic.woff2') format('woff2');
}
