/* ==========================================================================
   FONTS
   Pyidaungsu is not on any public CDN, so it is self-hosted here. Readers who
   already have the family installed get the real thing through local(); the
   rest get the subsetted woff2. Inter, Noto Sans Myanmar and Padauk come from
   Google Fonts, exactly as the original build requested them.

   Both weights are now real. Pyidaungsu 2.5.3 Regular and Bold are self-hosted
   as woff2; the 700 face carries its own outlines, so nothing is synthesised
   and bold Myanmar body copy finally has the wider, heavier strokes the
   typeface actually draws.
   ========================================================================== */
/* Relative on purpose. These were absolute https://blackkaung.xyz URLs, which
   would have broken the moment the site moved to its real domain -- and they
   pointed at the copy in uploads/niyo while niyo_preload_font() preloads the
   copy in assets/fonts, so the regular face was downloaded twice and the
   preload was wasted. Both copies are byte-identical; this is the one that
   travels with the theme. */
@font-face {
  font-family: "Pyidaungsu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Pyidaungsu"),
       url("../fonts/pyidaungsu-regular.woff2") format("woff2");
  unicode-range: U+1000-109F, U+A9E0-A9FF, U+AA60-AA7F, U+200B-200D, U+25CC;
}
@font-face {
  font-family: "Pyidaungsu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Pyidaungsu Bold"), local("Pyidaungsu-Bold"),
       url("../fonts/pyidaungsu-bold.woff2") format("woff2");
  unicode-range: U+1000-109F, U+A9E0-A9FF, U+AA60-AA7F, U+200B-200D, U+25CC;
}
