Currently working with SCSS and have a variable $arial: 'Arial', serif;
Now the plan is to implement the following:
.english{
$arial: 'Arial', serif;
font-family: $arial;
}
.japan{
$arial: 'Noto Sans';
font-family: $arial;
}
The initial intention was to display $arial
as 'Arial' for the customer, but now they want separate styles for English and Japanese pages.