Hi babybun,
If you dont want to use the Ralway font at all you can remove the reference to it from the page.xml file.
Open:
app/design/frontend/rwd/default/layout/page.xml
and remove this line:
<action method="addLinkRel"><rel>stylesheet</rel><href>//fonts.googleapis.com/css?family=Raleway:300,400,500,700,600</href></action>
You should also then chenge the font-stack variable in the themes variables, this is located here:
skin/frontend/rwd/default/scss/_var.scss
Then find this variable
$f-stack-special: 'Raleway', 'Helvetica Neue', Verdana, Arial, sans-serif;
and remove Raleway.
$f-stack-special: 'Helvetica Neue', Verdana, Arial, sans-serif;
You will then need to recompile your CSS.
Hope that helps!