NextFont variable properties unable to be applied to CSS global using var()
// font.ts file import { Quicksand, Syncopate } from ‘next/font/google’; export const quickSandRegular = Quicksand({ subsets: [‘latin’], variable: ‘–font-quicksand-reg’, weight: ‘400’, display: ‘swap’, }); export const quickSandSmBold = Quicksand({ subsets: [‘latin’], variable: ‘–font-quicksand-smbold’, weight: ‘600’, display: ‘swap’, }); export const syncopateRegular = Syncopate({ subsets: [‘latin’], variable: ‘–font-syncopate-reg’, weight: ‘400’, display: ‘swap’, }); export const syncopateBold […]