import { Merriweather, Lato } from 'next/font/google' export const merriweather = Merriweather({ subsets: ['latin'], weight: ['300', '400', '700', '900'], variable: '--font-merriweather', display: 'swap', }) export const lato = Lato({ subsets: ['latin'], weight: ['300', '400', '700', '900'], variable: '--font-lato', display: 'swap', })