/* Prophora — SZERVER-oldali script-font definíciók.
   Az app ezt ABSZOLÚT URL-ről tölti (index.html <link>), ezért ÚJ ÍRÁSRENDSZER
   hozzáadásához NEM kell új app-build: (a) tedd a <Font>.woff2-t ide (assets/fonts/),
   (b) adj hozzá egy @font-face-t alább, (c) fűzd a családnevet a --serif/--sans/--ipa
   stackekhez. A bundle-elt fontok (styles.scss) OFFLINE fallbackként megmaradnak;
   ez a fájl `!important`-tal felülírja a stacket, amikor online betöltődik.
   CORS: az assets/fonts/.htaccess ACAO:* -ot ad (a WebView https://localhost-ról tölt). */

@font-face {
  font-family: "Noto Sans JP Subset"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("https://prophora.app/assets/fonts/NotoSansJP-Subset.woff2") format("woff2");
  unicode-range: U+3000-303F, U+3040-30FF, U+31F0-31FF, U+FF61-FF9F, U+4E00-9FFF;
}
@font-face {
  font-family: "Noto Sans KR Subset"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("https://prophora.app/assets/fonts/NotoSansKR-Subset.woff2") format("woff2");
  unicode-range: U+1100-11FF, U+3130-318F, U+A960-A97F, U+AC00-D7A3, U+D7B0-D7FF;
}

/* A font-stackek szerver-oldali forrása. Új script családnevét IDE fűzd a farokra. */
:root {
  --serif: Georgia, "Iowan Old Style", "Times New Roman", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", "Noto Sans JP Subset", "Noto Sans KR Subset", serif !important;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Noto Sans Ethiopic", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", "Noto Sans JP Subset", "Noto Sans KR Subset", sans-serif !important;
  --ipa: "Charis SIL", "Doulos SIL", "Gentium Plus", "Segoe UI", "Noto Sans", "Times New Roman", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", "Noto Sans JP Subset", "Noto Sans KR Subset", "SFMono-Regular", ui-monospace, monospace !important;
}
