17 lines
399 B
CSS
17 lines
399 B
CSS
@font-face {
|
|
font-family: "Pretendard";
|
|
font-style: normal;
|
|
font-weight: 45 920; /* variable font range */
|
|
font-display: swap;
|
|
src: url("/assets/fonts/pretendard/PretendardVariable.woff2") format("woff2");
|
|
}
|
|
|
|
:root {
|
|
--font-sans: "Pretendard", system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", Arial, sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-sans);
|
|
}
|
|
FF
|