@mmarvel54: In Pro version, it does include feature to change font family for Site title, Content, default font etc. For this option, go to Dashboard=> Appearance=> Customize=> Theme Options=> Font Family. If you want to change fonts and size for p, h1, h2, h3, h4, h5, you can use Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
h1 {
font-family: "Times New Roman";
font-size: 30px;
}
h2 {
font-family: "Times New Roman";
font-size: 28px;
}
h3 {
font-family: "Times New Roman";
font-size: 24px;
}
h4 {
font-family: "Times New Roman";
font-size: 20px;
}
h5 {
font-family: "Times New Roman";
font-size: 18px;
}
p {
font-family: "Times New Roman";
font-size: 15px;
}
Note: Change the font-family and font-size as desired.
Regards,
Mahesh