/* ============================================================
   LP（about / guide 各ページ）のフォント定義

   Google Fonts への外部依存をやめて同一オリジンで配信する。
   外部依存だと HTML → fonts.googleapis.com(CSS) → fonts.gstatic.com(woff2) の
   2ホップ直列になり、初回表示がフォールバックで描画されてから差し替わる（FOUT）。
   Google 側が落ちている時は差し替えが永久に来ず、端末標準フォントのままになる。

   - Geologica ... ブランド表記（OB Lite）用。latin サブセット
   - DotGothic16 ... ドット字の見出し用。LP の使用文字だけに絞ったサブセット
     文字を足した時は scripts/build-dot-subset.py を再実行して作り直すこと
   - 本文の日本語は Web フォントを持たず端末標準（ヒラギノ／Noto 等）に任せる

   いずれも SIL Open Font License 1.1
   ============================================================ */

@font-face {
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/geologica-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DotGothic16';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dotgothic16-subset.woff2') format('woff2');
}
