/* ============================================================
   셀프호스트 명조 웹폰트 — Maru Buri (파일: static/fonts/, 외부 CDN 의존 없음)
   → --font-legal(본문)·--font-logo(강조) 공용 단일 명조 패밀리.
     본문 기본 400, 강조 700(Bold), 가는 글씨 200(ExtraLight).
   (고딕 Noto Sans KR 은 fontsource 번들 — +layout.svelte 에서 import)
   ============================================================ */

@font-face {
	font-family: 'Maru Buri';
	font-weight: 200;
	font-style: normal;
	font-display: swap;
	src: url('/fonts/MaruBuri-ExtraLight.woff2') format('woff2');
}
@font-face {
	font-family: 'Maru Buri';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url('/fonts/MaruBuri-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'Maru Buri';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url('/fonts/MaruBuri-Bold.woff2') format('woff2');
}
