Dear Julia,
Thanks for using the Portfolio manager.
The fonts are always taken from the theme itself. However, if you wish to change them, you can add the custom fonts like this:
Paste the following in Portfolio Manager > Settings > Advanced tab > Custom CSS
@import url(https://fonts.googleapis.com/css?family=Roboto);
/* Importing Font (You can omit this if the font you want is already in the Theme) */
.eds-bpm-view-heading{
font-family: 'Roboto', sans-serif !important;
/*this will add the font to the title */
}
.eds-bpm-view-para{
font-family: 'Roboto', sans-serif !important;
/*this will add the font to the project tags */
}
.eds-bpm-info{
font-family: 'Roboto', sans-serif !important;
/*this will add the font to the view project button */
}
If you could share your website link, or tell me the specific font that you want. I can get you the CSS for that.