/* Nanum Pen Script — TWO faces, not 93 shards.
 *
 * The previous file was Google's unicode-range CSS: one @font-face per hangul
 * block, 93 of them, so a single card could set off dozens of parallel font
 * requests. Consolidated because that is fragile in the in-app browsers every
 * recipient arrives in (KakaoTalk, WhatsApp, iMessage), where a handful of
 * those requests failing is normal.
 *
 * WHAT THIS DID NOT FIX, so nobody re-litigates it here: the pair beside the
 * heart losing its handwriting was NOT a missing shard. Latin capitals were
 * never on their own file — U+0000-00FF has always been one subset, N included
 * — and every face declares `font-display: swap`, so a late file swaps in
 * rather than leaving Times behind forever. That bug was `:where(:lang(ko))`
 * in globals.css stamping Pretendard onto any <span> that named no family; the
 * fix is the `.a42-pen` subtree rule, not this file.
 *
 * Latin and Korean do not overlap, so neither can steal a letter from the
 * other. Founder 2026-08-17. */

@font-face {
  font-family: 'Nanum Pen Script';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/nanum-pen/nanum-pen-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Nanum Pen Script';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/nanum-pen/nanum-pen-korean.woff2') format('woff2');
  unicode-range: U+1100-11FF, U+3130-318F, U+A960-A97F, U+AC00-D7AF, U+D7B0-D7FF;
}
