Hi,
I am using the PaperMod theme and have added my images and font files to the static folder. When i run the site locally both the custom font and the images show but not on my github pages preview, Chantal Partamian my repo is GitHub - rupalimo/papemod-01 · GitHub
My custom font rules are in the assets/css/core/theme-vars.css with the rules
@font-face {
font-family: 'crimson';
src: url('/fonts/CrimsonText-Regular.ttf') format('truetype');
font-style: normal;
}
@font-face {
font-family: 'crimson-bld';
src: url('/fonts/CrimsonText-SemiBold.ttf') format('truetype');
font-style: bold;
}
I have included images on my md files using 
my baseURL is https://rupalimo.github.io/
I am assuming i’ve done something wrong with linking the file paths but not sure as i’ve tried removing the backslash / and adding in the project directory to my baseURL. Should i move the files to where the .md and .css files are?
Thank you in advance