/* =====================================================
   Mireo Music — Webフォント(自前ホスティング)
   =====================================================
   Shippori Mincho / Zen Kaku Gothic New はいずれも
   SIL Open Font License 1.1。Reserved Font Name の指定が
   無いため、サブセット化しても書体名を変えずに使える。
     ライセンス全文: fonts/OFL-ShipporiMincho.txt
                     fonts/OFL-ZenKakuGothicNew.txt
     生成手順:       tools/_perf/build_fonts.py

   Google Fonts が unicode-range で1ページ100個以上に分割
   していたものを、サイトで実際に使う文字だけの
   「1書体1ファイル」にまとめている。

   このファイルは各HTMLから media="print" + onload で
   非ブロッキングに読み込む。フォント本体がヒーロー画像
   (LCP要素)の帯域を奪わないようにするため、意図的に
   style.css とは分けている。

   ここに無い太さは意図的に足していない。
     Shippori Mincho 400 -> 500 で表示される(.head-tag など)
     Zen Kaku Gothic New 600 -> 700 で表示される(.nav a など)
   これは Google Fonts 配信時と同じ挙動。足すと見た目が変わる。
   Zen Kaku Gothic New 500 は review.html だけが使うため、
   そのページ内に個別に宣言している。
   ===================================================== */
@font-face{
  font-family:"Shippori Mincho";
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url(fonts/shippori-mincho-500.woff2) format("woff2");
}
@font-face{
  font-family:"Shippori Mincho";
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url(fonts/shippori-mincho-600.woff2) format("woff2");
}
@font-face{
  font-family:"Shippori Mincho";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url(fonts/shippori-mincho-700.woff2) format("woff2");
}
@font-face{
  font-family:"Zen Kaku Gothic New";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url(fonts/zen-kaku-gothic-new-400.woff2) format("woff2");
}
@font-face{
  font-family:"Zen Kaku Gothic New";
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url(fonts/zen-kaku-gothic-new-700.woff2) format("woff2");
}
