What is the best way to set all headers in my prose class to a specific font?
The following is what I have, but does not seem to be working:
theme: {
typography: {
DEFAULT: {
css: {
h1: {
fontFamily: ['Bebas Neue', 'sans-serif'],
},
h2: {
fontFamily: ['Bebas Neue', 'sans-serif'],
},
h3: {
fontFamily: ['Bebas Neue', 'sans-serif'],
},
h4: {
fontFamily: ['Bebas Neue', 'sans-serif'],
},
h5: {
fontFamily: ['Bebas Neue', 'sans-serif'],
},
...
Also is there a less verbose way to set all headers at once?