/*
Theme Name: Your Theme Name
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A minimal WordPress theme with modern fonts.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: minimal, modern, responsive
Text Domain: your-theme
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap');

/* Apply Font Styles */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
	padding:0px;
	margin:0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #222;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
	padding:0px;
}

a {
    font-family: 'Lato', sans-serif;
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005177;
}

button, input, select, textarea {
    font-family: 'Source Sans Pro', sans-serif;
}
