/* Galmuri 픽셀 폰트 — 로컬 번들(030 B5: CDN 동결, Tauri/Capacitor 래핑 준비).
   게임이 쓰는 두 페이스(Galmuri11/Galmuri7)만 — 원본 galmuri.min.css(quiple/galmuri, SIL OFL)에서 발췌. */
/* font-display: block — 로드 전 폴백(Courier 등)으로 먼저 그렸다가 갈무리로 바뀌며 글자 크기가
   줄어드는 현상(모바일 FOUT) 방지. 짧은 block 구간 동안엔 글자를 잠깐 숨겼다가 갈무리로 바로 그린다.
   index.html의 <link rel="preload">가 HTML 파싱 시점에 미리 받아 두므로 이 구간은 거의 체감 안 된다. */
@font-face {
  font-family: 'Galmuri11';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('Galmuri11.woff2') format('woff2');
}
@font-face {
  font-family: 'Galmuri7';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('Galmuri7.woff2') format('woff2');
}
