Hello,
To make the title of footer a little bold you can use the below CSS code in theme settings >> Custom CSS >> Global Custom CSS:
.footer-column .widget-title{
font-weight:700;
}
To make the footer links and content a little bold. You can use the below CSS code:
.color-scheme-light .footer-widget a{
font-weight:700;
}
To make the copyright bottom area more prominent you can use the below code in Copyrights text inside footer under theme settings:
<p style="font-size:20px;">Copyright <i class="fa fa-copyright"></i> 2019 ENUESQUE. All rights reserved. </p>
Best Regards.