/* Self-hosted manga display fonts — no Google Fonts dependency, so they load
   on every device (incl. mobile, data-saver, and behind strict CSP).
   Place the three .woff2 files in /fonts/ (download from gwfh.mranftl.com and
   rename to match): bangers.woff2, anton.woff2, permanent-marker.woff2.
   Japanese (Noto Sans JP) is intentionally NOT loaded — the manga --font-jp
   stack falls back to the system Japanese fonts every device already ships. */

@font-face {
  font-family: 'Bangers';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/bangers.woff2') format('woff2');
}
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/anton.woff2') format('woff2');
}
@font-face {
  font-family: 'Permanent Marker';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/permanent-marker.woff2') format('woff2');
}
