/* layout.css 또는 style.css */

/* 1. 전체 기본 폰트: Freesentation (body 이하 전부 상속) */
html, body {
    font-family: 'Freesentation', sans-serif !important;
    font-weight: 400;
}

/* 2. 제목 폰트: Freesentation 7Bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Freesentation', sans-serif !important;
    font-weight: 700;
}

/* 3. 특정 단어 폰트: Ritzflf */
.Ritzflf-text {
    /* fonts.css에 정의된 Ritzflf 사용 */
    font-family: 'Ritzflf', cursive !important; /* <--- !important 추가 */
}

/* 4. 이미지 보호 — 드래그 저장 / 텍스트 선택 / iOS 길게누름 콜아웃 차단.
      (우클릭 메뉴와 키보드 단축키는 image-protect.js 에서 처리. OS 캡처는 차단 불가.) */
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

