/* fonts.css — 自己ホスト（外部依存なし＝レンダ検証で確実に同一フォント／本番も offline 可）
 * Inter（英字・数字・時刻・ローマ字地名）＝可変フォント Latin 1ファイルで 400〜800 を賄う。
 * Noto Sans JP（和文）＝日本語サブセット 400/500/700。
 * 取得元: Fontsource（jsdelivr）。font-display:swap。 */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;               /* 可変フォント：Regular〜ExtraBold を1ファイルで */
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/notosansjp-jp-400.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/notosansjp-jp-500.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/notosansjp-jp-700.woff2") format("woff2");
}
