/* class-type.css — 크라우니클래스 타이포 보정 (2026-07-12)
   문제: 중앙 크라우니디자인.css의 가변폰트(CrownyGothic-VF 5.6MB, font-display:swap)가
   ① 페이지 로딩 2.6초 지연 ② 시스템폰트→VF 스왑 시 글씨가 얇아져 가독성 저하.
   처방: class 페이지 한정 폰트 스택을 시스템/Pretendard로 고정 — 중앙 CSS(SSOT) 무접촉,
   토큰·컴포넌트는 그대로 상속. VF @font-face는 미사용 시 다운로드되지 않는다. */
html[data-crowny] body,
html[data-crowny] h1, html[data-crowny] h2, html[data-crowny] h3, html[data-crowny] h4,
html[data-crowny] button, html[data-crowny] input, html[data-crowny] select, html[data-crowny] textarea {
  font-family: 'Söhne', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', 'Segoe UI', sans-serif !important;
}
/* 가독성: 얇은 회색 보조 텍스트 최소 굵기 보장 */
html[data-crowny] body { font-weight: 400; }
html[data-crowny] small, html[data-crowny] .text2 { font-weight: 400; }
