/*
 * Site typeface — Manrope (variable, weight 200-800).
 *
 * Manrope is a modern geometric sans that covers Latin AND Cyrillic in a
 * single file, so English, Russian and Kyrgyz all render in the exact same
 * typeface. It is bound to the family name "Euclid Circular A" — the name the
 * theme's stylesheets already reference everywhere — so the whole site picks
 * it up without touching any other CSS.
 */
@font-face {
    font-family: 'Euclid Circular A';
    src: url('manrope-cyrillic.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

/* Also expose it under its real name for any new code. */
@font-face {
    font-family: 'Manrope';
    src: url('manrope-cyrillic.woff2') format('woff2');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}
