You can use AWS Route 53 latency based routing. I'm fairly confident you can use R53 with non-AWS sources.
Alternately CloudFlare have a traffic manager which can do "geo steering". It may still be in beta, and I don't know if it's on the free or paid plan.
Update
I just noticed your second question. I'm going to assume your aim is primarily page load time, with a secondary concern of service availability. I'm further going to assume the website is Wordpress, because it's more difficult to do what I'm suggesting below with stock software than custom written.
If you want the two sites serving traffic at the same time, in sync, you'll have to consider some kind of multi-master database replication. This isn't that simple, but there are techniques to do it. Digital Ocean has a tutorial here. RSync or BitTorrent sync will will deal with file replication.
If your sole goal is fast response times then you might be just as well off using a single server with a CDN to ensure your static resources are served locally - CloudFlare is good for that. Your latency for one request for the page probably isn't that significant, around 100ms extra, other resources will be served from the nearest node.
If your sole goal is redundancy in case of failure you might still consider for the database a master/read replica type scenario. Have all traffic routed to one server, with the database and files replicating live to the second site. If the main site goes down you fail over to the second site. If this happens you need to work out what to do when the main site comes back online, how you get things back in sync. In this case multi master still might be easiest, to keep things in sync.
Unfortunately what you're trying to do isn't entirely trivial, and can be moderately to exceptionally complex depending on your use cases. We really need to understand your goals to offer better solutions.