Typography
Google fonts
1) Change the google fonts link as per your choice : package/src/css/globals.css
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
2) Change Font family : package/tailwind.config.ts
fontFamily: {
sans: [
'Inter',
'sans-serif'
]
},