Change your fragment font
- choose a type you like on https://fonts.google.com
- to embed it, copy the link provided (such as https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap) and paste it after the import
- use css to assign the font family and if you want to change the color or various style (more: https://www.w3schools.com/css/css_font.asp or https://developer.mozilla.org/en-US/docs/Web/CSS/font)
copy this in your style tab:
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&display=swap');
.F {
font-family: 'EB Garamond', serif;
color:OrangeRed;
}