overlay post title over post’s featured image

Here is the answer for you CSS issue.
yes you can achieve that layout using CSS. Just follow this structure:

<div class="parent">
  <div class="image"><img src=""/></div>
  <div class = "overlay"> Add you title here </div>
</div>

here .parent must me position:relative and .overlay must be position:absolute with 100%width and bottom:0 . you can play around with style.