my blog https://overreacted.io
1import { Montserrat, Merriweather } from "next/font/google";
2
3export const sans = Montserrat({
4 subsets: ["latin"],
5 display: "swap",
6 weight: ["900"],
7 style: ["normal"],
8});
9
10export const serif = Merriweather({
11 subsets: ["latin"],
12 display: "swap",
13 weight: ["400", "700"],
14 style: ["normal", "italic"],
15});