In Nuxt, you can reduce CLS by using local font fallbacks thanks to the awesome Fontaine library.

install the package

bash
npm install -D @nuxtjs/fontaine

and set the module inside nuxt.config

js
export default defineNuxtConfig({
  modules: ['@nuxtjs/fontaine'],
})

And that's it!