/* Die Schriften liegen auf unserem eigenen Server.
 *
 * Grund: die Seiten holten Inter, Caveat und JetBrains Mono vorher von
 * fonts.googleapis.com. Damit ging bei jedem Aufruf die IP-Adresse des
 * Besuchers an Google. Das ist in Deutschland angreifbar (LG Muenchen I,
 * 3 O 17493/20) und es passt nicht zu einer Seite, deren zweiter Satz
 * lautet, dass niemand beobachtet wird.
 *
 * Quelle der Dateien: assets/fonts der Wichtelkamera-App, dieselben
 * Schnitte, dieselbe Lizenz (SIL Open Font License, Lizenztexte liegen
 * daneben). Auf Latein plus deutsche Umlaute beschnitten und als woff2
 * gepackt: 148 KB statt 1,8 MB.
 *
 * Die Gewichte sind als BEREICHE angemeldet, weil die App nur drei
 * Inter-Schnitte mitbringt. Ohne die Bereiche wuerde der Browser 700 und
 * 900 selbst fetter rechnen, und gerechnete Fettschrift sieht schlechter
 * aus als eine echte, die eine Stufe daneben liegt.
 */

@font-face{
  font-family:Inter; font-style:normal; font-weight:400;
  src:url("schrift/Inter-Regular.woff2") format("woff2");
  font-display:swap;
}
@font-face{
  font-family:Inter; font-style:normal; font-weight:500 600;
  src:url("schrift/Inter-SemiBold.woff2") format("woff2");
  font-display:swap;
}
@font-face{
  font-family:Inter; font-style:normal; font-weight:700 900;
  src:url("schrift/Inter-ExtraBold.woff2") format("woff2");
  font-display:swap;
}
@font-face{
  font-family:"JetBrains Mono"; font-style:normal; font-weight:400 700;
  src:url("schrift/JetBrainsMono-Regular.woff2") format("woff2");
  font-display:swap;
}
@font-face{
  font-family:Caveat; font-style:normal; font-weight:400 700;
  src:url("schrift/Caveat-SemiBold.woff2") format("woff2");
  font-display:swap;
}
