WordPress Custom Fonts Problem! [closed]

In /wp-content/themes/centric-pro/style.css, delete line 88 through line 113 this removes all the font-face declarations.

On line 88 paste the following:

@font-face {
  font-family: 'GothamRounded-Bold';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/GothamRounded-Bold.eot') format('embedded-opentype'),
       url('fonts/GothamRounded-Bold.otf') format('opentype'),
       url('fonts/GothamRounded-Bold.woff') format('woff'), 
       url('fonts/GothamRounded-Bold.ttf') format('truetype'), 
       url('fonts/GothamRounded-Bold.svg#GothamRounded-Bold') format('svg');
}

@font-face {
  font-family: 'GothamRounded-Light';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/GothamRounded-Light.eot') format('embedded-opentype'),
       url('fonts/GothamRounded-Light.otf') format('opentype'),
       url('fonts/GothamRounded-Light.woff') format('woff'),
       url('fonts/GothamRounded-Light.ttf')  format('truetype'), 
       url('fonts/GothamRounded-Light.svg#GothamRounded-Light') format('svg');
}

@font-face {
  font-family: 'GothamRounded-Medium';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/GothamRounded-Medium.eot') format('embedded-opentype'), 
       url('fonts/GothamRounded-Medium.otf')  format('opentype'),
       url('fonts/GothamRounded-Medium.woff') format('woff'),
       url('fonts/GothamRounded-Medium.ttf')  format('truetype'),
       url('fonts/GothamRounded-Medium.svg#GothamRounded-Medium') format('svg');
}

Treat font-face as case sensitive

In /wp-content/themes/centric-pro/custom.css on line 5 change:

font-family: "Gothamrounded-medium";

to

font-family: "GothamRounded-Medium";