/**
 * v4.12.686 — Kannada font load (rewritten — minimal scope).
 *
 * v4.12.685 over-reached: it forced `font-family: 'Baloo Tamma 2',
 * 'Inter', …` on every element with !important, which stripped
 * system-font fallbacks and inverted the existing font order in
 * places where the plugin's own carefully-crafted stack was
 * `'Inter', 'Baloo Tamma 2', system-ui, …` (Latin-first, Kannada
 * second). Net effect: English text changed everywhere the user
 * never asked it to.
 *
 * The right approach is much simpler. The plugin's existing CSS
 * already includes `'Baloo Tamma 2'` as a fallback in the font
 * chain. All we have to do is REGISTER the @font-face rules so
 * the browser knows where to fetch Baloo Tamma 2 from. With the
 * Kannada-only `unicode-range`, the browser will:
 *
 *   • Render Latin chars in Inter (or whatever the existing chain's
 *     first valid font is) — Baloo's unicode-range doesn't match
 *     Latin code points, so the browser skips it
 *   • Render Kannada chars in Baloo Tamma 2 — its unicode-range
 *     matches U+0C80-0CFF, browser downloads the WOFF2 once and
 *     applies it ONLY to Kannada glyphs
 *
 * No global `font-family` rule. No `!important` overrides. The
 * existing styles stay exactly as they were; this file only
 * teaches the browser what "Baloo Tamma 2" means.
 *
 * Code points covered:
 *   U+0964-0965  — Devanagari danda / double danda (shared by Kannada)
 *   U+0C80-0CFF  — full Kannada Unicode block
 *   U+200B-200D  — zero-width joiners (used in conjuncts)
 *   U+25CC       — dotted circle (placeholder for orphan vowels)
 */

@font-face {
    font-family: 'Baloo Tamma 2';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/balootamma2/v22/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPq-zIg.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0C80-0CFF, U+200B-200D, U+25CC;
}
@font-face {
    font-family: 'Baloo Tamma 2';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/balootamma2/v22/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5L_VrcscPq-zIg.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0C80-0CFF, U+200B-200D, U+25CC;
}
@font-face {
    font-family: 'Baloo Tamma 2';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/balootamma2/v22/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5MHQrcscPq-zIg.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0C80-0CFF, U+200B-200D, U+25CC;
}
@font-face {
    font-family: 'Baloo Tamma 2';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/balootamma2/v22/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5MfWrcscPq-zIg.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0C80-0CFF, U+200B-200D, U+25CC;
}
@font-face {
    font-family: 'Baloo Tamma 2';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/balootamma2/v22/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5KnRrcscPq-zIg.woff2) format('woff2');
    unicode-range: U+0964-0965, U+0C80-0CFF, U+200B-200D, U+25CC;
}

/* No font-family rules. Intentional. The plugin's existing chains
   already list 'Baloo Tamma 2' as a Kannada-fallback after Inter; the
   @font-face declarations above are all that's needed for those chains
   to actually find and apply the Kannada glyphs. */
