/*
    Self-hosted webfonts.

    The strict content-security policy in SecurityHeadersMiddleware forbids third-party font hosts,
    so Public Sans (Latin) and Noto Sans Devanagari (Hindi) must be served from this origin.

    Drop the .woff2 files into this folder during Epic 1.4 and the @font-face rules below will pick
    them up; until then the stack falls back to the system UI font, which keeps the application
    usable without shipping binaries into source control.

      Public Sans          — SIL Open Font License 1.1 — https://public-sans.digital.gov
      Noto Sans Devanagari — SIL Open Font License 1.1 — https://fonts.google.com/noto
*/

/*
@font-face {
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('./public-sans-variable.woff2') format('woff2-variations');
}

@font-face {
    font-family: 'Noto Sans Devanagari';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('./noto-sans-devanagari-variable.woff2') format('woff2-variations');
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF;
}
*/
