/* ミル LP 同梱Webフォント
   Zen Kaku Gothic New / SIL Open Font License 1.1（同梱配布可・OFL.txt 同梱）

   和文・欧文とも本書体1本で組む。ウェイトは 400 / 500 / 700 / 900 の4本。

   サブセット済み（このサイトで使う1,416文字のみ・4ウェイト計 約380KB）。
   原稿の文字を変えたら必ず  python3 tools/subset_fonts.py  を再実行すること。
   実行しないと、新しく増えた漢字が豆腐（□）になる。
   フル版は assets/fonts/_full/ に保管（納品ZIPには含めない）。 */

@font-face があるが、二重宣言は無害。

   ★サブセット済み（このサイトで使う1,416文字のみ・4ウェイト計 約380KB）。
     原稿の文字を変えたら必ず  python3 tools/subset_fonts.py  を再実行すること。
     フル版は assets/fonts/_full/ に保管（★ZIPには含めないこと）。 */

@font-face{
  font-family:"Zen Kaku Gothic New";
  font-style:normal; font-weight:400; font-display:swap;
  src:url("./ZenKakuGothicNew-400.woff2") format("woff2");
}
@font-face{
  font-family:"Zen Kaku Gothic New";
  font-style:normal; font-weight:500; font-display:swap;
  src:url("./ZenKakuGothicNew-500.woff2") format("woff2");
}
@font-face{
  font-family:"Zen Kaku Gothic New";
  font-style:normal; font-weight:700; font-display:swap;
  src:url("./ZenKakuGothicNew-700.woff2") format("woff2");
}
@font-face{
  font-family:"Zen Kaku Gothic New";
  font-style:normal; font-weight:900; font-display:swap;
  src:url("./ZenKakuGothicNew-900.woff2") format("woff2");
}
