/* Manrope + Playfair Display — self-hosted, latin subsets only.
 *
 * These used to come from fonts.googleapis.com, which put THREE serialised
 * steps in front of the first glyph: a DNS+TLS handshake to googleapis.com, a
 * 23KB stylesheet declaring 60 @font-face blocks (six unicode subsets x every
 * weight, for two families), and only then a SECOND handshake to gstatic.com
 * for the file itself. The stylesheet has to arrive and parse before the
 * browser can even know a font URL exists, so none of that overlaps.
 *
 * Same-origin, the files ride the connection that is already open and their
 * URLs are in this file from the start. This is the treatment satoshi.css
 * already documents and gets; these two were simply missed.
 *
 * WHAT IS HERE, AND WHAT IS NOT
 * -----------------------------
 * Both families ship from Google as VARIABLE fonts, so one file covers every
 * weight on the axis — there is no per-weight file to trim. What was trimmed
 * is the subset list: Google declares cyrillic, cyrillic-ext, greek and
 * vietnamese as well, and this site has no content in any of them.
 *
 * latin-ext is kept even though the copy is English. unicode-range means the
 * browser only downloads a subset if a glyph in that range is actually
 * painted, so it costs nothing until an accented character (a name in an
 * article, a quoted source) needs it — at which point its absence would be a
 * visible fallback-font flash.
 *
 * Weight 300 of Manrope was requested from Google and used nowhere; the
 * variable file covers it anyway, so this is only a smaller declaration.
 *
 * Playfair italic is here because `font-serif italic` renders in ResultsHero
 * and FreePreviewSections. Dropping it would synthesise an oblique instead.
 *
 * REGENERATING
 * ------------
 * Re-request the Google CSS with a desktop Chrome User-Agent (a curl default
 * UA gets legacy TTF instead of woff2), take the latin and latin-ext URLs, and
 * keep the unicode-range values below in step with what that CSS declares.
 */
/* latin */
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  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;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-latin-ext.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  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;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-latin-ext.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-italic-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
  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;
}
/* latin-ext */
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-italic-latin-ext.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
