So I'm currently trying to combine 2 separate .css files for my landing page. They both import different google fonts, problem is, as you all know the last .css style will override the first. Is there a good way to handle this issue or is it something that is not normally done? All class names are different as well.
<link href='http://fonts.googleapis.com/css?family=Raleway:600,900' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
maybe Im just not calling for the .css in the correct way...If you need more info from me, let me know. Is this a common issue?
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700|Raleway:600,900' rel='stylesheet' type='text/css'>)