1. First of all install sass in your vue js project:
> yarn add sass
2. Now create a sass file (lets say main.scss) in your vue js project and add the following code in that sass file:
@use 'vuetify' with (
$body-font-family: cursive /*put the font family name here*/
);
3. Assign font family name to Vuetify sass variable $body-font-family as shown in the step 2:
4. Import that sass file in entry file of your vue js project (main.js or main.ts):
import '@/assets/main.scss';