npm install @next/font 로 설치 후 import { Noto_Sans_KR } from "@next/font/google"; import Head from "next/head"; const notoSansKR = Noto_Sans_KR({ weight: ["400", "700"], subsets: [], }); {` html { font-family: ${notoSansKR.style.fontFamily}, sans-serif; } `}