/* fonts.css — Andika and Fredoka, self-hosted.
 *
 * Latin subset only. The app is English plus emoji, so the cyrillic, greek and
 * vietnamese subsets Google serves would be dead weight.
 *
 * Self-hosted for three reasons: the app then works with no network at all,
 * no child's device pings a third party just to draw a letter, and there is no
 * external dependency to break. Both faces are SIL Open Font License 1.1 —
 * see fonts/NOTICE.txt.
 *
 * Fredoka is a variable font: one file covers every weight, which is why there
 * is a single @font-face with a weight RANGE rather than three separate files. */

@font-face{
  font-family:"Andika"; font-style:normal; font-weight:400; font-display:swap;
  src:url(../fonts/andika-400.woff2) format("woff2");
}
@font-face{
  font-family:"Andika"; font-style:normal; font-weight:700; font-display:swap;
  src:url(../fonts/andika-700.woff2) format("woff2");
}
@font-face{
  font-family:"Fredoka"; font-style:normal; font-weight:500 700; font-display:swap;
  src:url(../fonts/fredoka-var.woff2) format("woff2-variations");
  src:url(../fonts/fredoka-var.woff2) format("woff2");
}
