/* Noto Sans Thai · Noto Sans Arabic — 언어 메뉴의 «ไทย»·«العربية» 글자만 담은 초소형 서브셋.
   2026-09-04 셀프호스트 전환. OS 폰트에 기대면 두부(□)가 나는 자리라 뺄 수 없다.

   ⚠ 옮기면서 «원본이 깨져 있었다»는 것을 확인했다. 전환 전에는 두 family 를 text= 로
     **한 번에** 요청했는데(HTML 의 &family= 결합), Google 이 그때 돌려주는 CSS 는
       · 네 face 모두에 태국어 unicode-range(U+e17,e22,e44)를 달고
       · 아랍어 kit URL 이 HTTP 400 을 낸다
     즉 아랍어 서브셋은 애초에 내려오지 않았고 «العربية» 는 OS 폰트로 그려지고 있었다.
     그래서 여기서는 **두 family 를 따로 요청**해 각각의 정상 CSS 를 합쳤다.
     아랍어 range 가 U+627-629,631,639,644,64a 로 제대로 잡힌 것이 그 결과다.
   갱신할 때도 반드시 따로 요청할 것 — 합쳐 요청하면 같은 문제가 재발한다. */
@font-face {
  font-family: 'Noto Sans Thai';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(google/noto-thai-iJWQBXeUZi_O.woff2) format('woff2');
  unicode-range: U+e17, U+e22, U+e44;
}
@font-face {
  font-family: 'Noto Sans Thai';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(google/noto-thai-iJWQBXeUZi_O.woff2) format('woff2');
  unicode-range: U+e17, U+e22, U+e44;
}

@font-face {
  font-family: 'Noto Sans Arabic';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(google/noto-arabic-nwpCtLGrOAZM.woff2) format('woff2');
  unicode-range: U+627-629, U+631, U+639, U+644, U+64a;
}
@font-face {
  font-family: 'Noto Sans Arabic';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(google/noto-arabic-nwpCtLGrOAZM.woff2) format('woff2');
  unicode-range: U+627-629, U+631, U+639, U+644, U+64a;
}
