/*
 * The reference's dialpad face (docs/phone-crm-ui-reference.html § "Type &
 * radius": "JetBrains Mono only for the dialpad"). This app's one mono
 * readout -- the number display in makeCall/MakeCallPage.js -- shows only
 * digits, +, (, ), -, and spaces, so only Google Fonts' "latin" subset
 * (U+0000-00FF) is fetched; the other five subsets its CSS API serves
 * (cyrillic, greek, vietnamese, etc.) are dead weight for a face used in one
 * place for one alphabet. Self-hosted at one static weight (400, the only one
 * anything here asks for) rather than linked from fonts.googleapis.com, matching
 * how Inter is loaded two directories up -- this app's primary face has never
 * depended on a third-party font CDN being reachable at runtime, and there is
 * no reason for its second face to be the first exception.
 */
@font-face {
    font-family: 'JetBrains Mono';
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    src: url("JetBrainsMono-400.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
      U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
