/*
|--------------------------------------------------------------------------
| 쇼핑·관리자 제외 일반 페이지 공통 폰트
|--------------------------------------------------------------------------
| 웹폰트 로딩은 공통 헤더에서 일반 페이지에만 조건부로 처리합니다.
|--------------------------------------------------------------------------
*/

:root {
    --general-site-font:
        "Pretendard Variable",
        Pretendard,
        -apple-system,
        BlinkMacSystemFont,
        system-ui,
        Roboto,
        "Helvetica Neue",
        "Segoe UI",
        "Apple SD Gothic Neo",
        "Noto Sans KR",
        "Malgun Gothic",
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        sans-serif;
}

html,
body {
    font-family: var(--general-site-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea,
option {
    font-family: var(--general-site-font) !important;
}

/*
 * Font Awesome 등 아이콘 폰트는 각 아이콘 라이브러리의
 * 기존 font-family 선언을 그대로 사용합니다.
 */
