/**
 * fonts.css
 * - Local font-face declarations (relative paths for subpath deploy)
 * - font-display: swap for stability
 */

@font-face {
  font-family: "Paperlogy Octin";
  src: url("../assets/fonts/Paperlogy-Octin-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy Octin";
  src: url("../assets/fonts/Paperlogy-Octin-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/**
 * 패널1 흰 카드 첫 라벨 손글씨 — `assets/fonts/PeoplefirstNeat&Loud.otf`
 * (&는 URL에서 %26 로 인코딩)
 */
@font-face {
  font-family: "Peoplefirst Neat Loud";
  src: url("../assets/fonts/PeoplefirstNeat%26Loud.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 동일 실제 글리프 — UI에서는 font-weight: 900으로 통일할 때 매칭 */
@font-face {
  font-family: "Peoplefirst Neat Loud";
  src: url("../assets/fonts/PeoplefirstNeat%26Loud.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

