/* 書体。Google Fonts ではなく、自分のサーバーから出します。
   *
   * ── なぜ自前なのか ──
   *
   * 和文の Google Fonts は1ウェイトが約122個に切られていて、
   * 7ウェイトぶん読むと、初回の訪問者が約1.8MBを落とします。
   * サイト本体（232KB）の8倍でした。
   *
   * サイトに出る1633字だけに切り詰めたら、7本で394KBになりました。
   *
   * ── 触るときは ──
   *
   * このファイルは **tools/subset-fonts.js が書きます。**
   * 手で直すと、次に走らせたときに消えます。
   *
   * 文字を足したいときは：
   *   node tools/collect-chars.js && node tools/subset-fonts.js
   *
   * ── 許諾 ──
   *
   * 3書体とも SIL Open Font License 1.1。
   * 許諾の文は同じフォルダの OFL-*.txt です。**外さないでください。**
   */

@font-face{
  font-family:"Zen Maru Gothic";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url("fonts/zenmaru-500.woff2") format("woff2");
}

@font-face{
  font-family:"Zen Maru Gothic";
  font-style:normal;
  font-weight:900;
  font-display:swap;
  src:url("fonts/zenmaru-900.woff2") format("woff2");
}

@font-face{
  font-family:"M PLUS Rounded 1c";
  font-style:normal;
  font-weight:800;
  font-display:swap;
  src:url("fonts/mplusr-800.woff2") format("woff2");
}

